Conditions | 2 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | const { exec } = require('child_process'); |
||
15 | function cbcommit(err) { |
||
16 | if (err) { |
||
17 | console.log(err); |
||
1 ignored issue
–
show
|
|||
18 | return; |
||
19 | } |
||
20 | exec('git push', cbpush); |
||
21 | } |
||
22 | |||
32 |